home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
4490
/
4490.xpi
/
components
/
scripts
/
wmn_forum.js
< prev
next >
Wrap
Text File
|
2010-01-29
|
928b
|
34 lines
/***********************************************************
WMN-forum
@require lib-update.js
***********************************************************/
var name="WMN-forum";
var noCookie=true;
function init(){
try{
initUpdateHandler(this);
}catch(e){
dout(e);
}
var t=parseInt(180*60000/this.main.timerDelay);
if(t<1)t=1;
this.timerMultiplier=t;
this.dataURL="http://webmailnotifier.mozdev.org/drupal/forum/"+this.password;
this.mailURL=this.dataURL;
this.mailDomain="webmailnotifier.mozdev.org";
this.start="<div id=\"forum\">[\\s\\S]+?<tbody>";
this.end="<\/tbody>";
}
function findString(aData){
var reg=new RegExp(this.start+"([\\s\\S]+?)"+this.end);
var fnd=aData.match(reg);
if(fnd){
fnd=fnd[1].replace(/<td class=\"created\">.+?<\/td>/g,"");
fnd=fnd.replace(/<td class=\"last-reply\".+?<\/td>/g,"");
return fnd;
}
return null;
}